home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / TGCBOR20.ARJ / INTROPAK.COM / SIMPLE.C < prev    next >
Text File  |  1991-04-06  |  615b  |  24 lines

  1.  
  2.   /* -- a simple program that draws a blank frame on the screen. The left  */
  3.   /* -- mouse button can be used to move it around. To exit the program click */
  4.   /* -- on the EASY OUT button that is displayed in the bottom right corner.  */
  5.  
  6. #include "teglsys.h"
  7.  
  8. void main(void)
  9. {
  10.  
  11.  
  12.    easytegl();   /* -- simple start up  */
  13.    easyout();   /* -- displays a button to break out with  */
  14.  
  15.  
  16.    pushimage(1,1,100,100);   /* -- save the background and  */ 
  17.    shadowbox(1,1,100,100);   /* -- then draw a box over it.  */ 
  18.  
  19.    teglsupervisor();   /* -- pass control to the supervisor  */ 
  20. }
  21.  
  22.  
  23.  
  24.